home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / A.D. Software / OOFGraph / Application Source / BarGraphWindow.h < prev    next >
Text File  |  1996-06-15  |  672b  |  29 lines

  1. // ===========================================================================
  2. //    BarGraphWindow.h                    Derived heavily from the Dashboard Starter
  3. // ===========================================================================
  4.  
  5. #pragma once
  6. #include "oofBarGraph.h"
  7. #include "CPlotPane.h"
  8.  
  9. class    LCommander;
  10. class    dbView;
  11.  
  12. class    BarGraphWindow {
  13. public:
  14.                         BarGraphWindow(LCommander*, dbView *theView, StringPtr theTitle,
  15.                                           unsigned long xAxisLength=0);
  16.     virtual             ~BarGraphWindow();
  17.                                 
  18.     void                DoPrinting();
  19.                                 
  20. protected:
  21.     LWindow*            mDisplayWindow;
  22.     CPlotPane*            PlotView;
  23.     oofBarGraph*        mBarGraphPtr;
  24.  
  25. public:
  26.     static void RegisterClass();
  27. };
  28.  
  29.